diff --git a/docs/Typechecking.md b/docs/Typechecking.md index d77689d615..0b4b4b1118 100644 --- a/docs/Typechecking.md +++ b/docs/Typechecking.md @@ -12,8 +12,6 @@ The `sig` method is used to annotate method signatures. Here's a simple example: ```ruby class MyClass - extend T::Sig - sig { params(name: String).returns(String) } def my_method(name) "Hello, #{name}!"