Skip to content

Commit

Permalink
fix: fix broken links (#4439)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Electron authored Dec 19, 2024
1 parent 5380fc3 commit 2e1eb07
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion crates/iota-json-rpc-types/src/iota_object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ pub struct IotaObjectData {
/// The Display metadata for frontend UI rendering, default to be None
/// unless IotaObjectDataOptions.showContent is set to true This can also
/// be None if the struct type does not have Display defined
/// See more details in <https://forums.iota.io/t/nft-object-display-proposal/4872>
#[serde(skip_serializing_if = "Option::is_none")]
pub display: Option<DisplayFieldsResponse>,
/// Move object content or package content, default to be None unless
Expand Down
4 changes: 3 additions & 1 deletion crates/iota-move-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ pub fn decorate_warnings(warning_diags: Diagnostics, files: Option<&MappedFiles>
report_warnings(f, warning_diags);
}
if any_linter_warnings {
eprintln!("Please report feedback on the linter warnings at https://forums.iota.io\n");
eprintln!(
"Please report feedback on the linter warnings at https://github.com/iotaledger/iota/issues\n"
);
}
if filtered_diags_num > 0 {
eprintln!(
Expand Down
2 changes: 1 addition & 1 deletion crates/iota-open-rpc/spec/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9700,7 +9700,7 @@
]
},
"display": {
"description": "The Display metadata for frontend UI rendering, default to be None unless IotaObjectDataOptions.showContent is set to true This can also be None if the struct type does not have Display defined See more details in <https://forums.iota.io/t/nft-object-display-proposal/4872>",
"description": "The Display metadata for frontend UI rendering, default to be None unless IotaObjectDataOptions.showContent is set to true This can also be None if the struct type does not have Display defined",
"anyOf": [
{
"$ref": "#/components/schemas/DisplayFieldsResponse"
Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/src/client/types/generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ export interface IotaObjectData {
/**
* The Display metadata for frontend UI rendering, default to be None unless
* IotaObjectDataOptions.showContent is set to true This can also be None if the struct type does not
* have Display defined See more details in <https://forums.iota.io/t/nft-object-display-proposal/4872>
* have Display defined
*/
display?: DisplayFieldsResponse | null;
objectId: string;
Expand Down

0 comments on commit 2e1eb07

Please sign in to comment.