Skip to content

Commit 46bdd74

Browse files
authored
Update README.md (#256)
Typo fixes to Content Security Headers section where a method name was incorrect and a comment had a typo
1 parent a47cb0e commit 46bdd74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,10 +409,10 @@ public void Configure(IApplicationBuilder app)
409409
builder.AddFrameAncestors() // frame-ancestors 'none'
410410
.None();
411411

412-
builder.AddBaseUri() // base-ri 'self'
412+
builder.AddBaseUri() // base-uri 'self'
413413
.Self();
414414

415-
builder.AddFrameSource() // frame-src http://testUrl.com
415+
builder.AddFrameSrc() // frame-src http://testUrl.com
416416
.From("http://testUrl.com");
417417

418418
// You can also add arbitrary extra directives: plugin-types application/x-shockwave-flash"

0 commit comments

Comments
 (0)