Skip to content

Commit d713af9

Browse files
committed
en: Fix typo
1 parent 03051d0 commit d713af9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_i18n/en/_posts/2019-04-05-java-for-csharp-programmers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ So, here is my list. Bear in mind that this is written from a C# programmer's pe
3030
(See also [this SO question](https://stackoverflow.com/questions/215497/in-java-difference-between-package-private-public-protected-and-private))
3131

3232
- `private` and `public` - works pretty much the same as in C#.
33-
- `protected` - again, similar to its C# counterpart. A type wit this visibility is visible to all subclasses (in the same package and others)
33+
- `protected` - again, similar to its C# counterpart. A type with this visibility is visible to all subclasses (in the same package and others)
3434
- no modifier - `package private` - like `internal` in C#. Unfortunately, this can *only* be specified by not providing a modifier at all!
3535
- No concept like `InternalsVisibleTo`. This can be rather annoying, especially when working with unit tests and integration tests; you would want to tighten the visibility for a particular class and/or method and `InternalsVisibleTo` plays a nice role in this.
3636

0 commit comments

Comments
 (0)