Skip to content

Commit

Permalink
docs: fix spelling errors in Makefile and message.rs (#284)
Browse files Browse the repository at this point in the history
* fix typos Makefile

* fix typos message.rs
  • Loading branch information
Pricstas authored Feb 7, 2025
1 parent df3231b commit ef1e1af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions rig-core/src/completion/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ pub enum MediaType {
}

/// Describes the image media type of the content. Not every provider supports every media type.
/// Convertable to and from MIME type strings.
/// Convertible to and from MIME type strings.
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum ImageMediaType {
Expand All @@ -155,7 +155,7 @@ pub enum ImageMediaType {

/// Describes the document media type of the content. Not every provider supports every media type.
/// Includes also programming languages as document types for providers who support code running.
/// Convertable to and from MIME type strings.
/// Convertible to and from MIME type strings.
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum DocumentMediaType {
Expand All @@ -172,7 +172,7 @@ pub enum DocumentMediaType {
}

/// Describes the audio media type of the content. Not every provider supports every media type.
/// Convertable to and from MIME type strings.
/// Convertible to and from MIME type strings.
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum AudioMediaType {
Expand Down
4 changes: 2 additions & 2 deletions rig-postgres/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ gitRebase:
git rebase $(DEFAULT_BRANCH)
git push --force origin $(CURRENT_BRANCH)

.PHONY: gitAmmend
gitAmmend:
.PHONY: gitAmend
gitAmend:
git add . && git commit --amend --no-edit && git push --force origin $(CURRENT_BRANCH)


Expand Down

0 comments on commit ef1e1af

Please sign in to comment.