Skip to content
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
10 changes: 6 additions & 4 deletions Manual/Interaction.lean
Original file line number Diff line number Diff line change
Expand Up @@ -505,29 +505,31 @@ intersperse.eq_unfold.{u_1} :
The {keywordOf Lean.Parser.Command.where}`#where` command displays all the modifications made to the current {tech}[section scope], both in the current scope and in the scopes in which it is nested.

```lean +fresh (name := scopeInfo)
section
public section
open Nat

namespace A
variable (n : Nat)
namespace B

open List
set_option pp.funBinderTypes true
set_option pp.tagAppFns true

#where

end A.B
end
```
```leanOutput scopeInfo (allowDiff := 1)
```leanOutput scopeInfo
public section

namespace A.B

open Nat List

variable (n : Nat)

set_option pp.funBinderTypes true
set_option pp.tagAppFns true
```

:::
Expand Down
2 changes: 1 addition & 1 deletion lake-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "git",
"subDir": null,
"scope": "",
"rev": "7866eb5788256eb96567fcc3633fcb0656f60d0d",
"rev": "74cdac102c52eb4e0626dd047be79ef8884c67a9",
"name": "verso",
"manifestFile": "lake-manifest.json",
"inputRev": "nightly-testing",
Expand Down
Loading