From 69cb39f2c5d4012abff23af5b0e1aba5f9f899df Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 25 Jul 2018 23:55:07 -0700 Subject: expand, not expend --- rust/fatcat-api/src/lib.rs | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'rust/fatcat-api/src/lib.rs') diff --git a/rust/fatcat-api/src/lib.rs b/rust/fatcat-api/src/lib.rs index c55d6eea..fac8ecac 100644 --- a/rust/fatcat-api/src/lib.rs +++ b/rust/fatcat-api/src/lib.rs @@ -466,11 +466,11 @@ pub trait Api { fn get_changelog_entry(&self, id: i64, context: &Context) -> Box + Send>; - fn get_container(&self, id: String, expend: Option, context: &Context) -> Box + Send>; + fn get_container(&self, id: String, expand: Option, context: &Context) -> Box + Send>; fn get_container_history(&self, id: String, limit: Option, context: &Context) -> Box + Send>; - fn get_creator(&self, id: String, expend: Option, context: &Context) -> Box + Send>; + fn get_creator(&self, id: String, expand: Option, context: &Context) -> Box + Send>; fn get_creator_history(&self, id: String, limit: Option, context: &Context) -> Box + Send>; @@ -482,11 +482,11 @@ pub trait Api { fn get_editor_changelog(&self, id: String, context: &Context) -> Box + Send>; - fn get_file(&self, id: String, expend: Option, context: &Context) -> Box + Send>; + fn get_file(&self, id: String, expand: Option, context: &Context) -> Box + Send>; fn get_file_history(&self, id: String, limit: Option, context: &Context) -> Box + Send>; - fn get_release(&self, id: String, expend: Option, context: &Context) -> Box + Send>; + fn get_release(&self, id: String, expand: Option, context: &Context) -> Box + Send>; fn get_release_files(&self, id: String, context: &Context) -> Box + Send>; @@ -494,7 +494,7 @@ pub trait Api { fn get_stats(&self, more: Option, context: &Context) -> Box + Send>; - fn get_work(&self, id: String, expend: Option, context: &Context) -> Box + Send>; + fn get_work(&self, id: String, expand: Option, context: &Context) -> Box + Send>; fn get_work_history(&self, id: String, limit: Option, context: &Context) -> Box + Send>; @@ -539,11 +539,11 @@ pub trait ApiNoContext { fn get_changelog_entry(&self, id: i64) -> Box + Send>; - fn get_container(&self, id: String, expend: Option) -> Box + Send>; + fn get_container(&self, id: String, expand: Option) -> Box + Send>; fn get_container_history(&self, id: String, limit: Option) -> Box + Send>; - fn get_creator(&self, id: String, expend: Option) -> Box + Send>; + fn get_creator(&self, id: String, expand: Option) -> Box + Send>; fn get_creator_history(&self, id: String, limit: Option) -> Box + Send>; @@ -555,11 +555,11 @@ pub trait ApiNoContext { fn get_editor_changelog(&self, id: String) -> Box + Send>; - fn get_file(&self, id: String, expend: Option) -> Box + Send>; + fn get_file(&self, id: String, expand: Option) -> Box + Send>; fn get_file_history(&self, id: String, limit: Option) -> Box + Send>; - fn get_release(&self, id: String, expend: Option) -> Box + Send>; + fn get_release(&self, id: String, expand: Option) -> Box + Send>; fn get_release_files(&self, id: String) -> Box + Send>; @@ -567,7 +567,7 @@ pub trait ApiNoContext { fn get_stats(&self, more: Option) -> Box + Send>; - fn get_work(&self, id: String, expend: Option) -> Box + Send>; + fn get_work(&self, id: String, expand: Option) -> Box + Send>; fn get_work_history(&self, id: String, limit: Option) -> Box + Send>; @@ -654,16 +654,16 @@ impl<'a, T: Api> ApiNoContext for ContextWrapper<'a, T> { self.api().get_changelog_entry(id, &self.context()) } - fn get_container(&self, id: String, expend: Option) -> Box + Send> { - self.api().get_container(id, expend, &self.context()) + fn get_container(&self, id: String, expand: Option) -> Box + Send> { + self.api().get_container(id, expand, &self.context()) } fn get_container_history(&self, id: String, limit: Option) -> Box + Send> { self.api().get_container_history(id, limit, &self.context()) } - fn get_creator(&self, id: String, expend: Option) -> Box + Send> { - self.api().get_creator(id, expend, &self.context()) + fn get_creator(&self, id: String, expand: Option) -> Box + Send> { + self.api().get_creator(id, expand, &self.context()) } fn get_creator_history(&self, id: String, limit: Option) -> Box + Send> { @@ -686,16 +686,16 @@ impl<'a, T: Api> ApiNoContext for ContextWrapper<'a, T> { self.api().get_editor_changelog(id, &self.context()) } - fn get_file(&self, id: String, expend: Option) -> Box + Send> { - self.api().get_file(id, expend, &self.context()) + fn get_file(&self, id: String, expand: Option) -> Box + Send> { + self.api().get_file(id, expand, &self.context()) } fn get_file_history(&self, id: String, limit: Option) -> Box + Send> { self.api().get_file_history(id, limit, &self.context()) } - fn get_release(&self, id: String, expend: Option) -> Box + Send> { - self.api().get_release(id, expend, &self.context()) + fn get_release(&self, id: String, expand: Option) -> Box + Send> { + self.api().get_release(id, expand, &self.context()) } fn get_release_files(&self, id: String) -> Box + Send> { @@ -710,8 +710,8 @@ impl<'a, T: Api> ApiNoContext for ContextWrapper<'a, T> { self.api().get_stats(more, &self.context()) } - fn get_work(&self, id: String, expend: Option) -> Box + Send> { - self.api().get_work(id, expend, &self.context()) + fn get_work(&self, id: String, expand: Option) -> Box + Send> { + self.api().get_work(id, expand, &self.context()) } fn get_work_history(&self, id: String, limit: Option) -> Box + Send> { -- cgit v1.2.3