Skip to content

Commit f34348a

Browse files
committed
documentation updates
1 parent fa4d9ba commit f34348a

1 file changed

Lines changed: 3 additions & 11 deletions

File tree

Documentation.java

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// # Flapi
1+
// # Flapi (v0.7)
22
// ### _A fluent API generator for Java_
33

44
/**
@@ -31,9 +31,6 @@
3131
* this later)
3232
*/
3333

34-
import unquietcode.tools.flapi.annotations.Between;
35-
import unquietcode.tools.flapi.annotations.Last;
36-
3734
EmailGenerator.compose(new EmailHelperImpl())
3835
.sender("HAL9000@gmail.com")
3936
.addRecipient("dave@unquietcode.com")
@@ -65,10 +62,7 @@
6562
.addMethod("addRecipient(String emailAddress)").atLeast(1)
6663
.addMethod("sender(String emailAddress)").exactly(1)
6764
.addMethod("body(String text)").atMost(1)
68-
.addMethod("send()").last(EmailMessage.import java.lang.Class;
69-
import java.lang.String;
70-
71-
class)
65+
.addMethod("send()").last(EmailMessage.class)
7266
.build();
7367

7468
builder.writeToStream(System.out);
@@ -596,10 +590,8 @@ String startBlock(
596590

597591

598592

599-
600-
601593
/**
602594
* ## Thanks!
603-
* Visit the project [on GitHub](https://github.com/UnquietCode/Flapi)
595+
* Visit the project page [at GitHub](https://github.com/UnquietCode/Flapi)
604596
* for more information.
605597
*/

0 commit comments

Comments
 (0)