Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in docs #1030

Merged
merged 2 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ String result = fixture.giveMeBuilder(StringSupplier.class)
```

인터페이스를 생성하는 `ArbitraryBuilder`가 제어할 수 있는 프로퍼티는 실제로 생성한 구현체마다 다릅니다.
하지만 아직은 구현체를 선택할 수 있는 `ArbitraryBulder` API가 존재하지 않습니다.
하지만 아직은 구현체를 선택할 수 있는 `ArbitraryBuilder` API가 존재하지 않습니다.
인터페이스가 하나의 구현체를 가지고 있다면 구현체 프로퍼티도 제어가 가능합니다. 하지만 구현체가 두 개 이상이라면 인터페이스의 프로퍼티만 제어가 가능합니다.


Expand Down
2 changes: 1 addition & 1 deletion docs/content/v1.0.x/docs/customizing-objects/interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ String result = fixture.giveMeBuilder(StringSupplier.class)
```

The properties of the interface in `ArbitraryBuilder` differ in the implementation.
Unfortunately, there is currently no ArbitraryBuilder API that resolves the implementation of the interface.
Unfortunately, there is currently no `ArbitraryBuilder` API that resolves the implementation of the interface.
Unless the interface has only one implementation, you can customize the properties of the interface, not the implementation.

You cannot generate the randomly populated intended implementation, but you can generate the fixed implementation by using the `set` API.
Expand Down
Loading