From 2b0b460b9aeb4bd60fca558aa2ffdcc72decede6 Mon Sep 17 00:00:00 2001 From: Alessandro Coglio Date: Wed, 22 Sep 2021 10:16:01 -0700 Subject: [PATCH 1/3] [RFC] Update some statuses. --- docs/rfc/003-imports-stabilization.md | 2 +- docs/rfc/006-arrays-without-size.md | 2 +- docs/rfc/007-type-aliases.md | 2 +- docs/rfc/008-built-in-declarations.md | 2 +- docs/rfc/009-bit-byte-conversions.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/rfc/003-imports-stabilization.md b/docs/rfc/003-imports-stabilization.md index 6f1cd1fe81..0b85d53105 100644 --- a/docs/rfc/003-imports-stabilization.md +++ b/docs/rfc/003-imports-stabilization.md @@ -6,7 +6,7 @@ The Aleo Team. ## Status -FINAL +IMPLEMENTED # Summary diff --git a/docs/rfc/006-arrays-without-size.md b/docs/rfc/006-arrays-without-size.md index 25185edee6..e1313b7a5f 100644 --- a/docs/rfc/006-arrays-without-size.md +++ b/docs/rfc/006-arrays-without-size.md @@ -6,7 +6,7 @@ The Aleo Team. ## Status -DRAFT +IMPLEMENTED # Summary diff --git a/docs/rfc/007-type-aliases.md b/docs/rfc/007-type-aliases.md index ec424d4643..514a8d8323 100644 --- a/docs/rfc/007-type-aliases.md +++ b/docs/rfc/007-type-aliases.md @@ -6,7 +6,7 @@ The Aleo Team. ## Status -DRAFT +IMPLEMENTED # Summary diff --git a/docs/rfc/008-built-in-declarations.md b/docs/rfc/008-built-in-declarations.md index 2aca26f740..bee13d00c6 100644 --- a/docs/rfc/008-built-in-declarations.md +++ b/docs/rfc/008-built-in-declarations.md @@ -6,7 +6,7 @@ The Aleo Team. ## Status -DRAFT +IMPLEMENTED ## Summary diff --git a/docs/rfc/009-bit-byte-conversions.md b/docs/rfc/009-bit-byte-conversions.md index b582ae0997..98f587ae59 100644 --- a/docs/rfc/009-bit-byte-conversions.md +++ b/docs/rfc/009-bit-byte-conversions.md @@ -6,7 +6,7 @@ The Aleo Team. ## Status -DRAFT +FINAL # Summary From 322aaee280a502efb94caef82b7a7396abbb44f8 Mon Sep 17 00:00:00 2001 From: Eric McCarthy Date: Mon, 27 Sep 2021 11:54:52 -0700 Subject: [PATCH 2/3] Add section on implementation decisions. --- docs/rfc/006-arrays-without-size.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/rfc/006-arrays-without-size.md b/docs/rfc/006-arrays-without-size.md index e1313b7a5f..8b3fbcce6a 100644 --- a/docs/rfc/006-arrays-without-size.md +++ b/docs/rfc/006-arrays-without-size.md @@ -149,3 +149,7 @@ None. # Alternatives None. + +# Implementation Decisions + +For the length of an array, we decided on `.len`, where `` is any expression of array type. From 547b714d82deb6171f09178e9e90d5c080d0afa4 Mon Sep 17 00:00:00 2001 From: Eric McCarthy Date: Mon, 27 Sep 2021 11:58:06 -0700 Subject: [PATCH 3/3] fix typo --- docs/rfc/006-arrays-without-size.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rfc/006-arrays-without-size.md b/docs/rfc/006-arrays-without-size.md index 8b3fbcce6a..002f057f03 100644 --- a/docs/rfc/006-arrays-without-size.md +++ b/docs/rfc/006-arrays-without-size.md @@ -152,4 +152,4 @@ None. # Implementation Decisions -For the length of an array, we decided on `.len`, where `` is any expression of array type. +For the length of an array, we decided on `.len()`, where `` is any expression of array type.