my blog https://overreacted.io

fix: type in how imports work in RSC post (#861)

I think the word intended was instructive?

authored by

Owen Buckley and committed by
GitHub
4ddbb399 064621ab

+1 -1
+1 -1
public/how-imports-work-in-rsc/index.md
··· 84 84 85 85 ### ...Except They're Not 86 86 87 - Earlier I said imports are like copy and paste. That's not *exactly* true. To see why, it's intructive to take a trip down the memory lane to the `#include` directive in C. 87 + Earlier I said imports are like copy and paste. That's not *exactly* true. To see why, it's instructive to take a trip down the memory lane to the `#include` directive in C. 88 88 89 89 The `#include` directive, which predates the JavaScript `import` by about 40 years, behaved [quite literally like copy and paste](https://stackoverflow.com/a/5735389/458193)! For example, here's a C program: 90 90