Skip to content

Commit b0ca2d4

Browse files
committed
awslabs/smithy-rs -> smithy-lang/smithy-rs
1 parent 2c6366a commit b0ca2d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

codegen/smithy-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/utils/CaseUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ private val completeWords = listOf("ipv4", "ipv6", "sigv4", "mib", "gib", "kib",
1111
* Split a string on word boundaries
1212
*/
1313
fun String.splitOnWordBoundaries(): List<String> {
14-
// This is taken from Rust: https://github.com/awslabs/smithy-rs/pull/3037/files#diff-4175c66ee81a450fcf1cd3e256f36ae2c8e0b30b910be8ca505135fbe215144d
14+
// This is taken from Rust: https://github.com/smithy-lang/smithy-rs/pull/3037/files#diff-4175c66ee81a450fcf1cd3e256f36ae2c8e0b30b910be8ca505135fbe215144d
1515
// with minor changes (s3 and iot as whole words). Previously we used the Java v2 implementation
1616
// https://github.com/aws/aws-sdk-java-v2/blob/2.20.162/utils/src/main/java/software/amazon/awssdk/utils/internal/CodegenNamingUtils.java#L36
1717
// but this has some edge cases it doesn't handle well

runtime/auth/aws-signing-default/common/test/aws/smithy/kotlin/runtime/auth/awssigning/DefaultSignatureCalculatorTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class DefaultSignatureCalculatorTest {
8484
fun testChunkStringToSign() {
8585
// Test event stream signing
8686
// https://docs.aws.amazon.com/transcribe/latest/dg/streaming-http2.html
87-
// Adapted from: https://github.com/awslabs/smithy-rs/blob/v0.38.0/aws/rust-runtime/aws-sigv4/src/event_stream.rs#L166
87+
// Adapted from: https://github.com/smithy-lang/smithy-rs/blob/v0.38.0/aws/rust-runtime/aws-sigv4/src/event_stream.rs#L166
8888
val tests = listOf(
8989
ChunkStringToSignTest(AwsSignatureType.HTTP_REQUEST_CHUNK, HashSpecification.EmptyBody.hash),
9090
ChunkStringToSignTest(

runtime/serde/serde-xml/common/test/aws/smithy/kotlin/runtime/serde/xml/XmlStreamWriterTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class XmlStreamWriterTest {
7373
}
7474

7575
// The following escape tests were adapted from
76-
// https://github.com/awslabs/smithy-rs/blob/c15289a7163cb6344b088a0ee39244df2967070a/rust-runtime/smithy-xml/src/unescape.rs
76+
// https://github.com/smithy-lang/smithy-rs/blob/c15289a7163cb6344b088a0ee39244df2967070a/rust-runtime/smithy-xml/src/unescape.rs
7777
@Test
7878
fun itHandlesEscaping() {
7979
val testCases = mapOf(

0 commit comments

Comments
 (0)