Skip to content

Commit 52245f3

Browse files
spuradagenpmccallum
authored andcommitted
chore: minor improvement for docs
Signed-off-by: spuradage <[email protected]>
1 parent 824494b commit 52245f3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

ciborium-io/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Workflow Status](https://github.com/enarx/ciborium/workflows/test/badge.svg)](https://github.com/enarx/ciborium/actions?query=workflow%3A%22test%22)
22
[![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/enarx/ciborium.svg)](https://isitmaintained.com/project/enarx/ciborium "Average time to resolve an issue")
33
[![Percentage of issues still open](https://isitmaintained.com/badge/open/enarx/ciborium.svg)](https://isitmaintained.com/project/enarx/ciborium "Percentage of issues still open")
4-
![Maintenance](https://img.shields.io/badge/maintenance-activly--developed-brightgreen.svg)
4+
![Maintenance](https://img.shields.io/badge/maintenance-actively--developed-brightgreen.svg)
55

66
# ciborium-io
77

ciborium-ll/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Workflow Status](https://github.com/enarx/ciborium/workflows/test/badge.svg)](https://github.com/enarx/ciborium/actions?query=workflow%3A%22test%22)
22
[![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/enarx/ciborium.svg)](https://isitmaintained.com/project/enarx/ciborium "Average time to resolve an issue")
33
[![Percentage of issues still open](https://isitmaintained.com/badge/open/enarx/ciborium.svg)](https://isitmaintained.com/project/enarx/ciborium "Percentage of issues still open")
4-
![Maintenance](https://img.shields.io/badge/maintenance-activly--developed-brightgreen.svg)
4+
![Maintenance](https://img.shields.io/badge/maintenance-actively--developed-brightgreen.svg)
55

66
# ciborium-ll
77

ciborium/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Workflow Status](https://github.com/enarx/ciborium/workflows/test/badge.svg)](https://github.com/enarx/ciborium/actions?query=workflow%3A%22test%22)
22
[![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/enarx/ciborium.svg)](https://isitmaintained.com/project/enarx/ciborium "Average time to resolve an issue")
33
[![Percentage of issues still open](https://isitmaintained.com/badge/open/enarx/ciborium.svg)](https://isitmaintained.com/project/enarx/ciborium "Percentage of issues still open")
4-
![Maintenance](https://img.shields.io/badge/maintenance-activly--developed-brightgreen.svg)
4+
![Maintenance](https://img.shields.io/badge/maintenance-actively--developed-brightgreen.svg)
55

66
# ciborium
77

@@ -34,7 +34,7 @@ reasons for this choice. First, the specification seems to imply it by
3434
using a separate bit for the sign. Second, the specification requires
3535
that implementations handle leading zeroes; a liberal reading of which
3636
implies a requirement for lossless coercion. Third, dynamic languages like
37-
Python have no notion of "integer width," making this is a practical
37+
Python has no notion of "integer width," making this a practical
3838
choice for maximizing wire compatibility with those languages.
3939

4040
This coercion is **always** lossless. For floats, this implies that we

ciborium/src/tag.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Contains helper types for dealing with CBOR tags
1+
//! Contains helper types for dealing with CBOR tags.
22
33
use serde::{de, de::Error as _, forward_to_deserialize_any, ser, Deserialize, Serialize};
44

ciborium/src/value/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub use canonical::canonical_into_vec;
1818

1919
use alloc::{boxed::Box, string::String, vec::Vec};
2020

21-
/// A representation of a dynamic CBOR value that can handled dynamically
21+
/// A representation of a dynamic CBOR value that can be handled dynamically
2222
#[non_exhaustive]
2323
#[derive(Clone, Debug, PartialEq, PartialOrd)]
2424
pub enum Value {

0 commit comments

Comments
 (0)