Projects STRLCPY wrongsecrets Commits 1186380e
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■
    CONTRIBUTING.md
    skipped 274 lines
    275 275   public boolean answerCorrect(String answer) {
    276 276   return secret.equals(answer);
    277 277   }
    278  - //which runtime can you use to run the challenge on ? (You can just use Docker here)
     278 + //which runtime can you use to run the challenge on? (You can just use Docker here)
    279 279   /**
    280 280   * {@inheritDoc}
    281 281   */
    skipped 101 lines
  • ■ ■ ■ ■
    src/main/java/org/owasp/wrongsecrets/HerokuWebSecurityConfig.java
    skipped 8 lines
    9 9  import org.springframework.security.web.SecurityFilterChain;
    10 10   
    11 11  /**
    12  - * Used to implement to https redirect for our Heroku hosted workload.
     12 + * Used to implement https redirect for our Heroku-hosted workload.
    13 13   */
    14 14  @Configuration
    15 15  public class HerokuWebSecurityConfig {
    skipped 14 lines
  • ■ ■ ■ ■
    src/main/java/org/owasp/wrongsecrets/InMemoryScoreCard.java
    skipped 5 lines
    6 6  import java.util.Set;
    7 7   
    8 8  /**
    9  - * In memory implementation of the ScoreCard (E.g. no persistence).
     9 + * In-memory implementation of the ScoreCard (E.g. no persistence).
    10 10   */
    11 11  public class InMemoryScoreCard implements ScoreCard {
    12 12   
    skipped 33 lines
  • ■ ■ ■ ■
    src/main/java/org/owasp/wrongsecrets/ScoreCard.java
    skipped 2 lines
    3 3  import org.owasp.wrongsecrets.challenges.Challenge;
    4 4   
    5 5  /**
    6  - * Interface of a scorecard where progress of a player is stored into.
     6 + * Interface of a scorecard where a player's progress is stored into.
    7 7   */
    8 8  public interface ScoreCard {
    9 9   
    skipped 32 lines
Please wait...
Page is in error, reload to recover