Skip to content

Commit 7a624ce

Browse files
committed
readme
1 parent 30ec6bb commit 7a624ce

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Consts
22

3-
The framework that allows keeping your apex's consts in an ordered way.
3+
Consts framework allows keeping apex's constants in an ordered way.
44

55
## Example
66

@@ -13,13 +13,13 @@ Account acc = new Account(
1313
```
1414

1515
```java
16-
System.debug(Consts.ACCOUNT.TYPE.PROSPECT); // 'Prospect'
17-
System.debug(Consts.ACCOUNT.RATING.HOT); // 'Hit'
16+
System.debug(Consts.ACCOUNT.TYPE.PROSPECT); //'Prospect'
17+
System.debug(Consts.ACCOUNT.RATING.HOT); //'Hit'
1818

19-
System.debug(Consts.CONTACT.API_NAME); // 'Contact'
20-
System.debug(Consts.CONTACT.LEAD_SOURCE.WEB); // 'Web'
19+
System.debug(Consts.CONTACT.API_NAME); //'Contact'
20+
System.debug(Consts.CONTACT.LEAD_SOURCE.WEB); //'Web'
2121

22-
System.debug(Consts.OPPORTUNITY.TYPE.EXISTING_CUSTOMER_DOWNGRADE); // 'Existing Customer - Downgrade'
22+
System.debug(Consts.OPPORTUNITY.TYPE.EXISTING_CUSTOMER_DOWNGRADE); //'Existing Customer - Downgrade'
2323
```
2424

2525
## How it works?

0 commit comments

Comments
 (0)